home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000321_news@newsmaster….columbia.edu _Mon Sep 8 13:44:06 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA15197
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 8 Sep 1997 13:44:06 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA12462
  7.     for kermit.misc@watsun; Mon, 8 Sep 1997 13:44:05 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Possibility to write Minput command in separate lines in MSK315
  12. Date: 8 Sep 1997 17:43:59 GMT
  13. Organization: Columbia University
  14. Lines: 36
  15. Message-ID: <5v1dgv$kfd$1@apakabar.cc.columbia.edu>
  16. References: <34136556.3481737@news.calvacom.fr>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7644
  19.  
  20. In article <34136556.3481737@news.calvacom.fr>,
  21. Dominique Ottello <do11@calva.net> wrote:
  22. : Is there any possibility to write Minput commands in more than one line in
  23. : order to improve legibility and printing ?
  24. Of course.  Kermit commands can be continued using a hyphen (dash) at the
  25. end of the continued line.
  26.  
  27. : For example, this minput line (word wrapped by Agent) is not very well
  28. : readable 
  29. : minput \%d {   CHAPTER-} {SAME CHAPTER} {E N D   O F   U U T   T E S T} {M
  30. : A J O R    F A I L U R E} {T E S T   A B O R T E D}
  31. : It will be better if we can write it in separate lines :
  32. : minput \%d {
  33. :   {   CHAPTER-}
  34. :   {SAME CHAPTER}
  35. :   {E N D   O F   U U T   T E S T}
  36. :   {M A J O R    F A I L U R E}
  37. :   {T E S T   A B O R T E D}
  38. :  }
  39. This syntax ALMOST works but not quite; for consistency with other aspects
  40. of the parser, perhaps it should -- we will look into this.  But meanwhile,
  41. of course, you can use the hyphen:
  42.  
  43.   minput \%d -
  44.     {   CHAPTER-} -
  45.     {SAME CHAPTER} -
  46.     {E N D   O F   U U T   T E S T} -
  47.     {M A J O R    F A I L U R E} -
  48.     {T E S T   A B O R T E D}
  49.  
  50. - Frank